home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
AmigActive 24
/
AACD 24.iso
/
AACD
/
Information
/
WebSites
/
Eyetech
/
DOWNLOAD
/
IOBLI015.LHA
/
Goodies
/
Terminal Libs
/
Install Terminal Libs
next >
Wrap
Text File
|
1999-08-10
|
4KB
|
152 lines
;
; $VER: IOBlix terminal libraries installation 1.1 (24.7.98)
;
; Copyright (c) 1998 Thore Böckelmann and RBM Computertechnik
;
;****************************************************************************
;
; English texts
;
(if (not (= @language "deutsch"))
(
(set #installinfo (cat "\n"
"This will install the two libraries\n"
"\"OwnDevUnit.library\"\n"
"and\n"
"\"xprzmodem.library\"\n"
"as well as some preferences for the ZModem protocoll on your\n"
"computer. The IOBlix board has intensively been tested with\n"
"these libraries.\n"
"\n"
"Do you want to install the libraries now?\n"))
(set #selectlibs "\nWhere to install the libraries?\n")
(set #selectenv "\nWhere to install the ZModem environment variable?\n")
(set #selectdl (cat "\n"
"Where are downloaded files stored?\n"
"This path is stored in the environment variable\n"))
(set #copylibs "\nCopying libraries...\n")
(set #copyenv "\nCopying environment variable...\n")
)
)
;****************************************************************************
;
; Deutsche Texte
;
(if (= @language "deutsch")
(
(set #installinfo (cat "\n"
"Hiermit werden die beiden Bibliotheken\n"
"\"OwnDevUnit.library\"\n"
"und\n"
"\"xprzmodem.library\"\n"
"so wie Einstellungen für das ZModem-Protokoll auf Ihrem Rechner\n"
"installiert. Die IOBlix-Karte wurde intensiv mit diesen Bibliotheken\n"
"getestet.\n"
"\n"
"Wollen Sie die Bibliotheken nun installieren?\n"))
(set #selectlibs (cat "\n"
"Wohin sollen die Bibliotheken kopiert werden?\n"
"Dieser Pfad wird in der Umgebungsvariable gespeichert\n"))
(set #selectenv "\nWohin soll die ZModem-Umgebungsvariable kopiert werden?\n")
(set #selectdl "\nWohin sollten empfangene Dateien gespeichert werden?\n")
(set #copylibs "\nKopiere Bibliotheken...\n")
(set #copyenv "\nKopiere Umgebungsvariable...\n")
)
)
;****************************************************************************
;
; Welcome
;
(welcome)
(complete 10)
(if
(not
(askbool
(prompt #installinfo)
(help @askbool-help)
)
)
(exit (quiet))
)
;****************************************************************************
;
; Setup directory
;
(set #destlibs
(askdir
(prompt #selectlibs)
(help @askdir-help)
(default "LIBS:")
)
)
(set #destenv
(askdir
(prompt #selectenv)
(help @askdir-help)
(default "ENVARC:")
)
)
(set #destdl
(askdir
(prompt #selectdl)
(help @askdir-help)
(default "INBOUND:")
)
)
;****************************************************************************
;
; Install devices
;
(copylib
(help @copylib-help)
(prompt #copylibs)
(source "OwnDevUnit.library")
(dest #destlibs)
(confirm)
)
(copylib
(help @copylib-help)
(prompt #copylibs)
(source "xprzmodem.library")
(dest #destlibs)
(confirm)
)
(textfile
(dest (tackon #destenv "xprzmodem"))
(prompt "")
(help "")
(append (cat "TC,OR,B16,F65536,E20,AY,DN,KY,SN,RN,P" #destdl ",M1024"))
)
(textfile
(dest "env:xprzmodem")
(prompt "")
(help "")
(append (cat "TC,OR,B16,F65536,E20,AY,DN,KY,SN,RN,P" #destdl ",M1024"))
)
(complete 50)
;****************************************************************************
;
; Exit
;
(complete 100)
(exit)